/* Base styles */
.button {
    border-radius: 0.25rem;
    font-size: 13px;
    min-height: 40px;
    text-transform: uppercase;
}
/* Base styles */

/* Layout */
.layout {
    display: flex;
    flex-wrap: wrap;
    margin: 70px auto 3.125rem;
    max-width: 1200px;
}
    .layout__title {
        font-size: 1.75rem;
    }
/* Layout */

/* Form */
.giftCard-form {
    font-size: 14px;
}
    .giftCard-form__title {
        font-size: 1.063rem;
    }
    .giftCard-form__input, .giftCard-form__textarea {
        max-width: 18.125rem;
        min-height: 31px;
        width: 100%;
    }
    .giftCard-form__field-container {
        margin-bottom: 12px !important;
    }
        .giftCard-form__field {
            border: 2px solid #333;
            border-radius: 0.25rem;
            min-height: 31px;
            padding: 5px 7px;
        }
            .giftCard-form__field:focus {
                /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #cc2128; */
                /* box-shadow: 0 0 0 0.1rem #cc2128; */
                box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
                outline: none;
            }
    .giftCard-form__amountList {
        display: flex;
        list-style: none;
    }
        .giftCard-form__amountList li {
            margin-right: 4px;
        }
        .giftCard-form__amountList li:nth-child(n+4):nth-child(-n+6) {
            display: none;
        }
    .giftCard-form__custom-amount {
        width: 6.875rem;
    }
    .giftCard-addToCart {
        padding: 0.375rem 0.875rem;
    }
    .button--primary-style {
        background-color: #141414;
        border-color: #141414;
        color: #ffffff;
    }
        .button--primary-style:hover {
            background-color: #2e2e2e;
            border-color: #2e2e2e;
        }
        .button--primary-style:focus {
            background: transparent;
            border-color: #141414;
            color: #141414;
            outline: none;
        }
@media (min-width: 62rem) {
    .giftCard-form__amountList li:nth-child(n+4):nth-child(-n+6) {
        display: block;
    }
}
/* Form */

/* Gift Card */
.giftCard {
    border: 1px solid #ddd;
    border-radius: 0.438rem;
    margin: 0 auto 24px;
    max-width: 31.25rem;
}
    /* TOP SIDE */
    .giftCard__picture img {
        border-radius: 0.438rem 0.438rem 0 0;
    }
    /* TOP SIDE */
    /* MEDIUM SIDE */
    .giftCard__middle {
        border-bottom: 1px solid #ddd;
    }
    .giftCard__message {
        font-size: 1.063rem;
        padding: 0.938rem 1.563rem 1.875rem;
        text-align: center;
    }
    /* MEDIUM SIDE */
    /* BOTTOM SIDE */
    .giftCard__bottom {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 1.075rem 1.263rem 1.138rem;
    }
    .giftCard__amount {
        font-size: 1.75rem;
    }
    .giftCard__picture-logo {
        width: 10rem;
    }
    /* BOTTOM SIDE */
@media (min-width: 62rem) {
    .giftCard {
        margin: 0;
    }
    .giftCard__bottom {
        padding: 1.375rem 1.563rem 1.438rem;
    }
}
/* Gift Card */